home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 15
/
Aminet 15 - Nov 1996.iso
/
Aminet
/
dev
/
basic
/
ace24dist.lha
/
ace24.lha
/
prgs
/
ExternFunc
/
func2.b
< prev
next >
Wrap
Text File
|
1996-09-10
|
278b
|
17 lines
{*
** A test of external function use.
** sub2.s (assembled to produce sub2.o)
** is used in conjunction with this:
**
** bas -O func2 sub2.o
*}
defint x,y
declare function subtract%(x%,y%) external
input "enter x: ",x
input "enter y: ",y
print x;"-";y;"=";subtract(x,y)